home *** CD-ROM | disk | FTP | other *** search
- #
- #
- # Place some module definitions here
- #
- #
- DEFINE STAGE P1
- DEFINE FLOOR P2
-
-
- #
- #
- # Synchronize the timer with the external event (via the keyboard).
- # This resets the internal timer to 0. All future "timer" commands
- # will be offset from this keypress.
- #
- #
-
- PAUSE
-
-
-
- # At 10.5 seconds after the keypress, the following sequences will occur.
- # Since both FLOOR and STAGE use the same HOUSECODE (see DEFINE above),
- # both modules may be triggered at the same time.
-
- FLOOR STAGE ON TIMER 0:0:10.5
-
- FLOOR DIM 0 TIMER 0:0:20.0
-
- STAGE OFF TIMER 0:0:30.0
-
- :EXIT
- FLOOR OFF
- STAGE OFF
-